home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 25
/
Aminet 25 (1998)(GTI - Schatztruhe)[!][Jun 1998].iso
/
Aminet
/
comm
/
bbs
/
QN07.lha
/
qn.dd
< prev
next >
Wrap
Text File
|
1998-02-12
|
5KB
|
93 lines
/* Quick Note v0.7 Door for DDBBS -- by Xpose */
Parse Arg node
Options results
nodeid="DREAMREXX"node
address value nodeid
tr = transmit
MENU:
tr ""
tr "
______________________________________________________ "
tr "
__/
\__"
tr "
/_____________
Quick Note v0.7 by Xpose
_____________\
"
tr "
\________________________________/
"
tr "
____________________ ____________________ ____________________"
tr "
| | |
|"
tr "
|
C
heck For SysOp
|
Quick Note v0.7
|
P
ublic User Note
|"
tr "
|
|
~~~~~~~~~~~~~~~~
|
|"
tr "
|
W
rite A Comment
|
Created By Xpose
|
A
bout Quick Note
|"
tr "
|
|
~~~~~~~~~~~~~~
|
|"
tr "
|
N
ote the SysOp
|
|
Q
uit Quick Note
|"
tr "
|____________________|____________________|____________________|"
tr "
________________________________"
tr "
_____________/
\_____________ "
tr "
\__
Quick Note v0.7 by Xpose
__/"
tr "
\______________________________________________________/";getchar
if result = "c" then call CHECK
if result = "w" then call COMMENT
if result = "n" then call NOTE
if result = "p" then call PUBLIC
if result = "a" then call ABOUT
if result = "q" then call QUIT
CALL menu
CHECK:
SYSTEMINFO 9
tr result;getchar;call MENU
COMMENT:
tr "";tr " Commenting the SysOp ";tr " Max 200 Chars ";newline;newline;PROMPT 200 NORMAL "> "
COMM = result
fifoexecute "ECHO "COMM" >> DOORS:QN/COMMENTS.DAT"
call MENU
NOTE:
tr "";tr " Writing a Note for the SysOp ";tr " Start a newline with /q to quit ";newline
LOOPEY:
PROMPT 1000 NORMAL " "
PAT = result
if result = "/q" then call TELP
if PAT = "RESULT" then PAT = " "
fifoexecute "ECHO "PAT" >> DOORS:QN/SNOTES.DAT"
call LOOPEY
TELP:
getuser 2; HANDLE = result
fifoexecute "ECHO -------- >> DOORS:QN/SNOTES.DAT"
fifoexecute "ECHO "HANDLE" >> DOORS:QN/SNOTES.DAT"
fifoexecute "ECHO ------------------------------------------------------------------------------- >> DOORS:qn/SNOTES.DAT"
call MENU
PUBLIC:
tr ""; tr " Writing Public Quick Note ";tr "Start a line with /q to quit ";newline
LOOPET:
PROMPT 1500 NORMAL " "
PAF = result
if result = "/q" then call SPOT
if PAF = "RESULT" then PAF = " "
fifoexecute "ECHO "PAF" >> DOORS:QN/PNOTES.DAT"
call LOOPET
SPOT:
getuser 2;HANDLE = result
fifoexecute "ECHO ------- >> DOORS:qn/SNOTES.DAT"
fifoexecute "ECHO "HANDLE" >> DOORS:QN/PNOTES.DAT"
fifoexecute "ECHO ------------------------------------------------------------------------------- >> DOORS:qn/SNOTES.DAT"
ABOUT:
tr "";
tr "
"
tr "
===
=============================
======
===============================
===
"
tr "
=
About Quick Note v0.7
=
==
="
tr "
=========================
==
ConTaCT : Xpose
="
tr "
=
==
="
tr "
=
Coding & Graphical Art
==
EmaiL
:
Xpose1200@mailexcite.com
="
tr "
=
~~~~~~~~~~~~~~~~~~~~~~
==
="
tr "
=
By Xpose
==
or write to :
Æhmad H.S
="
tr "
=
~~~~~~~~
==
="
tr "
=
February `98
==
P.O.Box 3174
="
tr "
=
==
="
tr "
=
==
Manama - Bahrain
="
tr "
===
=============================
======
===============================
==="
getchar
call MENU
QUIT:
SHUTDOWN